home *** CD-ROM | disk | FTP | other *** search
/ Just Call Me Internet / Just Call Me Internet.iso / prog / mint / duftp / globals.h < prev    next >
C/C++ Source or Header  |  1995-06-12  |  2KB  |  35 lines

  1. /*
  2.     DUFTP
  3. */
  4.  
  5. // Global Variables
  6.  
  7. #ifndef _DUFTP_GLOBAL_
  8. #define _DUFTP_GLOBAL_
  9. #include <DULIB.H>
  10. #include <SETJMP.H>
  11. #include "ls2filel.h"
  12.  
  13. #define mev_QUIT            5000        //Quit event generated by quit in file menu
  14. #define mev_SELBOOKMARK        5001        //Select a server from the bookmark scrolling list
  15. #define mev_REMOTEFILE        5002        //A remote file has been clicked on
  16. #define mev_CHANGEREMOTEDIR    5003        //A change the remote directory (dc on remote file)
  17. #define mev_STOPTRANSFER    5004        //Abort a transfer part way through
  18. #define mev_LOCALFILE        5005        //A local file has been clicked on
  19. #define mev_CHANGELOCALDIR    5006        //A change the local directory (dc on local file)
  20.  
  21. extern char *initial_dir;                // Programs startup directory
  22. extern jmp_buf recover_main;            // Jump back into main from a signal handler
  23. extern file_list *remote_directory;        // List of files in current remote directory
  24. extern file_list *local_directory;        // List of files in current local directory
  25. extern char **remote_files;                // Array of just the filenames of the remote files
  26. extern char **local_files;                // Array of just the filenames of the local files
  27. extern short file_count;                // How many files are there in the remote list?
  28. extern char current_local_path[FMSIZE];    // Where we are in the local filesystem
  29. extern short local_file_count;            // Number of entries in the local filesystem
  30. extern char new_server_address[50];        // Address for a new server
  31. extern char new_server_login[50];        // Login for a new server
  32. extern char new_server_password[50];    // Password for a new server
  33. extern char new_server_path[FMSIZE];    // Initial path for a new server
  34.  
  35. #endif